home *** CD-ROM | disk | FTP | other *** search
/ C++ für Kids / C++ for kids.iso / Buch / Ding1.h < prev    next >
C/C++ Source or Header  |  1999-01-26  |  947b  |  26 lines

  1. //---------------------------------------------------------------------------
  2. #ifndef Ding1H
  3. #define Ding1H
  4. //---------------------------------------------------------------------------
  5. #include <vcl\Classes.hpp>
  6. #include <vcl\Controls.hpp>
  7. #include <vcl\StdCtrls.hpp>
  8. #include <vcl\Forms.hpp>
  9. //---------------------------------------------------------------------------
  10. class TForm1 : public TForm
  11. {
  12. __published:    // IDE-verwaltete Komponenten
  13.     TButton *Button1;
  14.     TButton *Button2;
  15.     void __fastcall Button1Click(TObject *Sender);
  16.     void __fastcall Button2Click(TObject *Sender);
  17.     void __fastcall FormCreate(TObject *Sender);
  18. private:    // Benutzer-Deklarationen
  19. public:        // Benutzer-Deklarationen
  20.     __fastcall TForm1(TComponent* Owner);
  21. };
  22. //---------------------------------------------------------------------------
  23. extern TForm1 *Form1;
  24. //---------------------------------------------------------------------------
  25. #endif
  26.